home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Demos / ShellControls / ShellConsts.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-05-22  |  1.1 KB  |  35 lines

  1. {*******************************************************}
  2. {                                                       }
  3. {       Borland Delphi Visual Component Library         }
  4. {                                                       }
  5. {       Copyright (c) 1995,2001 Inprise Corporation     }
  6. {                                                       }
  7. {*******************************************************}
  8.  
  9. unit ShellConsts;
  10.  
  11. interface
  12.  
  13. resourcestring
  14.   SShellDefaultNameStr = 'Name';
  15.   SShellDefaultSizeStr = 'Size';
  16.   SShellDefaultTypeStr = 'Type';
  17.   SShellDefaultModifiedStr = 'Modified';
  18.   SShellNoDetails = 'Unable to retrieve folder details for "%s". Error code $%x';
  19.   SCallLoadDetails = '%s: Missing call to LoadColumnDetails';
  20.   SPalletePage = 'Samples';
  21.   SPropertyName = 'Root';
  22.   SRenamedFailedError = 'Rename to %s failed';
  23.  
  24. const
  25.   SRFDesktop = 'rfDesktop'; { Do not localize }
  26.   SCmdVerbOpen = 'open'; { Do not localize }
  27.   SCmdVerbRename = 'rename'; { Do not localize }
  28.   SCmdVerbDelete = 'delete'; { Do not localize }
  29.   SCmdVerbPaste = 'paste'; { Do not localize }
  30.  
  31.  
  32. implementation
  33.  
  34. end.
  35.